home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak Vol A-4
/
(Vol A-4) Vol. A4.iso
/
Games
/
smashing.swf
/
scripts
/
DefineSprite_14_mcExplosion
/
frame_8
/
DoAction.as
Wrap
Text File
|
2008-03-12
|
449b
|
15 lines
i = 1;
while(_parent.brickNumber >= i)
{
brickPath = _parent.bricks["brick" + i];
if((brickPath.destructible or brickPath.multiHit) && !brickPath.invisible && !brickPath.brickSmashed && (brickPath.brickType != "bonus" or brickPath.pointsWorth == "T.N.T."))
{
if(mcPath.hitTest(brickPath._x,brickPath._y,false))
{
brickPath.blownAway = true;
_parent.removeBrick(brickPath);
}
}
i++;
}